home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / kpathsea / hash.h < prev    next >
C/C++ Source or Header  |  1995-06-25  |  2KB  |  62 lines

  1. /* hash.h: declarations for a hash table.
  2.  
  3. Copyright (C) 1994 Karl Berry.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  */
  18.  
  19. #ifndef HASH_H
  20. #define HASH_H
  21.  
  22. #include <kpathsea/c-proto.h>
  23. #include <kpathsea/types.h>
  24.  
  25.  
  26. /* A single (key,value) pair.  */
  27. typedef struct hash_element_struct
  28. {
  29.   const_string key;
  30.   const_string value;
  31.   struct hash_element_struct *next;
  32. } hash_element_type;
  33.  
  34. /* The usual arrangement of buckets initialized to null.  */
  35. typedef struct
  36. {
  37.   hash_element_type **buckets;
  38.   unsigned size;
  39. } hash_table_type;
  40.  
  41. #ifdef DEBUG
  42. /* How to print the hash results when debugging.  */
  43. extern boolean kpse_debug_hash_lookup_int;
  44. #endif
  45.  
  46. /* Create a hash table of size SIZE.  */
  47. extern hash_table_type hash_create P1H(unsigned size);
  48.  
  49. /* Insert the (KEY,VALUE) association into TABLE.  KEY may have more
  50.    than one VALUE.  Neither KEY nor VALUE is copied.  */
  51. extern void hash_insert P3H(hash_table_type *table,  const_string key,
  52.                             const_string value);
  53.  
  54. /* Look up KEY in MAP, and return NULL-terminated list of all matching
  55.    values (not copies), in insertion order.  If none, return NULL.  */
  56. extern string *hash_lookup P2H(hash_table_type table, const_string key);
  57.  
  58. /* Print TABLE to stdout.  */
  59. extern void hash_print P1H(hash_table_type table);
  60.  
  61. #endif /* not HASH_H */
  62.